github.com/klauspost/compress/zstd.dict.content (field)

34 uses

	github.com/klauspost/compress/zstd (current package)
		blockdec.go#L678: 			hist.dict.content = nil
		decoder_options.go#L139: 		o.dicts[id] = &dict{id: id, content: content, offsets: [3]int{1, 4, 8}}
		dict.go#L21: 	content             []byte
		dict.go#L42: 	return len(d.content)
		dict.go#L50: 	return d.content
		dict.go#L143: 	d.content = make([]byte, br.remain())
		dict.go#L144: 	copy(d.content, br.unread())
		dict.go#L145: 	if d.offsets[0] > len(d.content) || d.offsets[1] > len(d.content) || d.offsets[2] > len(d.content) {
		dict.go#L146: 		return nil, fmt.Errorf("initial offset bigger than dictionary content size %d, offsets: %v", len(d.content), d.offsets)
		dict.go#L229: 		content: hist,
		enc_base.go#L169: 		e.hist = append(e.hist, d.content...)
		enc_best.go#L490: 		end := int32(len(d.content)) - 8 + e.maxMatchOff
		enc_best.go#L494: 			cv := load6432(d.content, i-e.maxMatchOff)
		enc_best.go#L525: 		if len(d.content) >= 8 {
		enc_best.go#L526: 			cv := load6432(d.content, 0)
		enc_best.go#L533: 			end := int32(len(d.content)) - 8 + e.maxMatchOff
		enc_best.go#L536: 				cv = cv>>8 | (uint64(d.content[off]) << 56)
		enc_better.go#L1113: 		end := int32(len(d.content)) - 8 + e.maxMatchOff
		enc_better.go#L1117: 			cv := load6432(d.content, i-e.maxMatchOff)
		enc_better.go#L1149: 		if len(d.content) >= 8 {
		enc_better.go#L1150: 			cv := load6432(d.content, 0)
		enc_better.go#L1157: 			end := int32(len(d.content)) - 8 + e.maxMatchOff
		enc_better.go#L1160: 				cv = cv>>8 | (uint64(d.content[off]) << 56)
		enc_dfast.go#L1056: 		if len(d.content) >= 8 {
		enc_dfast.go#L1057: 			cv := load6432(d.content, 0)
		enc_dfast.go#L1062: 			end := int32(len(d.content)) - 8 + e.maxMatchOff
		enc_dfast.go#L1064: 				cv = cv>>8 | (uint64(d.content[i-e.maxMatchOff+7]) << 56)
		enc_fast.go#L815: 			end := e.maxMatchOff + int32(len(d.content)) - 8
		enc_fast.go#L819: 				cv := load6432(d.content, i-e.maxMatchOff)
		encoder_options.go#L366: 		o.dict = &dict{id: id, content: content, offsets: [3]int{1, 4, 8}}
		history.go#L65: 	h.decoders.dict = dict.content
		seqdec.go#L97: 		s.dict = hist.dict.content